From: kfraser@localhost.localdomain Date: Thu, 3 Aug 2006 12:55:41 +0000 (+0100) Subject: [HVM] Declare vlapic_ipi() as static. Used only once. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15732^2~84 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=8a8cef762760a9821650dd4ec385855ce2af9292;p=xen.git [HVM] Declare vlapic_ipi() as static. Used only once. Signed-off-by: Steven Smith --- diff --git a/xen/arch/x86/hvm/vlapic.c b/xen/arch/x86/hvm/vlapic.c index 700a516b4d..7ccfdb7aec 100644 --- a/xen/arch/x86/hvm/vlapic.c +++ b/xen/arch/x86/hvm/vlapic.c @@ -377,7 +377,7 @@ static int vlapic_check_vector(struct vlapic *vlapic, return 1; } -void vlapic_ipi(struct vlapic *vlapic) +static void vlapic_ipi(struct vlapic *vlapic) { uint32_t icr_low = vlapic_get_reg(vlapic, APIC_ICR); uint32_t icr_high = vlapic_get_reg(vlapic, APIC_ICR2);